home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / DEBUG / STAKWK10 / PROJECT1.DPR next >
Text File  |  1996-05-07  |  319b  |  17 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'Unit1.pas' {Form1},
  6.   StakWalk in 'StakWalk.pas' {WalkerDialog},
  7.   StakLow in 'Staklow.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.CreateForm(TWalkerDialog, WalkerDialog);
  15.   Application.Run;
  16. end.
  17.